home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / httrack.c < prev    next >
C/C++ Source or Header  |  2002-07-09  |  18KB  |  572 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsshow.c console progress info                        */
  34. /* Only used on Linux version                                   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #if HTS_WIN
  39. #else
  40. #ifndef Sleep
  41. #define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
  42. #endif
  43. #endif
  44.  
  45. #include "htsglobal.h"
  46. #include "httrack.h"
  47.  
  48. // htswrap_add
  49. #include "htswrap.h"
  50.  
  51. #if HTS_ANALYSTE_CONSOLE
  52.  
  53. /* specific definitions */
  54. #include "htsbase.h"
  55. #include <stdio.h>
  56. #include <stdlib.h>
  57. #include <string.h>
  58. #include <ctype.h>
  59. #ifdef _WIN32
  60. #include "Winsock.h"
  61. #endif
  62. /* END specific definitions */
  63.  
  64. // ISO VT100/220 definitions
  65. #define VT_COL_TEXT_BLACK    "30"
  66. #define VT_COL_TEXT_RED      "31"
  67. #define VT_COL_TEXT_GREEN    "32"
  68. #define VT_COL_TEXT_YELLOW   "33"
  69. #define VT_COL_TEXT_BLUE     "34"
  70. #define VT_COL_TEXT_MAGENTA  "35"
  71. #define VT_COL_TEXT_CYAN     "36"
  72. #define VT_COL_TEXT_WHITE    "37"
  73. #define VT_COL_BACK_BLACK    "40"
  74. #define VT_COL_BACK_RED      "41"
  75. #define VT_COL_BACK_GREEN    "42"
  76. #define VT_COL_BACK_YELLOW   "43"
  77. #define VT_COL_BACK_BLUE     "44"
  78. #define VT_COL_BACK_MAGENTA  "45"
  79. #define VT_COL_BACK_CYAN     "46"
  80. #define VT_COL_BACK_WHITE    "47"
  81. //
  82. #define VT_GOTOXY(X,Y)  "\33["Y";"X"f"
  83. #define VT_COLOR(C)     "\33["C"m"
  84. #define VT_RESET        "\33[m"
  85. #define VT_REVERSE      "\33[7m"
  86. #define VT_UNREVERSE    "\33[27m"
  87. #define VT_BOLD         "\33[1m"
  88. #define VT_UNBOLD       "\33[22m"
  89. #define VT_BLINK        "\33[5m"
  90. #define VT_UNBLINK      "\33[25m"
  91. //
  92. #define VT_CLREOL       "\33[K"
  93. #define VT_CLRSOL       "\33[1K"
  94. #define VT_CLRLIN       "\33[2K"
  95. #define VT_CLREOS       "\33[J"
  96. #define VT_CLRSOS       "\33[1J"
  97. #define VT_CLRSCR       "\33[2J"
  98. //
  99. #define csi(X)          printf(s_csi( X ));
  100. void vt_clear(void) {
  101.   printf("%s%s%s",VT_RESET,VT_CLRSCR,VT_GOTOXY("1","0"));
  102. }
  103. void vt_home(void) {
  104.   printf("%s%s",VT_RESET,VT_GOTOXY("1","0"));
  105. }
  106. //
  107.  
  108.  
  109. /*
  110. #define STYLE_STATVALUES VT_COLOR(VT_COL_TEXT_BLACK)
  111. #define STYLE_STATTEXT   VT_COLOR(VT_COL_TEXT_BLUE)   
  112. */
  113. #define STYLE_STATVALUES VT_BOLD
  114. #define STYLE_STATTEXT   VT_UNBOLD
  115. #define STYLE_STATRESET  VT_UNBOLD
  116. #define NStatsBuffer     14
  117. #define MAX_LEN_INPROGRESS 40
  118.  
  119. static int use_show;
  120.  
  121.  
  122. int main(int argc, char **argv) {
  123.   hts_init();
  124.  
  125.   /*
  126.   hts_htmlcheck_init         = (t_hts_htmlcheck_init)           htswrap_read("init");
  127. Log: "engine: init"
  128.  
  129.   hts_htmlcheck_uninit       = (t_hts_htmlcheck_uninit)         htswrap_read("free");
  130. Log: "engine: free"
  131.  
  132.   hts_htmlcheck_start        = (t_hts_htmlcheck_start)          htswrap_read("start");
  133. Log: "engine: start"
  134.  
  135.   hts_htmlcheck_end          = (t_hts_htmlcheck_end)            htswrap_read("end");
  136. Log: "engine: end"
  137.  
  138.   hts_htmlcheck_chopt        = (t_hts_htmlcheck_chopt)          htswrap_read("change-options");
  139. Log: "engine: change-options"
  140.  
  141.   hts_htmlcheck              = (t_hts_htmlcheck)                htswrap_read("check-html");
  142. Log: "check-html: <url>"
  143.  
  144.   hts_htmlcheck_query        = (t_hts_htmlcheck_query)          htswrap_read("query");
  145.   hts_htmlcheck_query2       = (t_hts_htmlcheck_query2)         htswrap_read("query2");
  146.   hts_htmlcheck_query3       = (t_hts_htmlcheck_query3)         htswrap_read("query3");
  147.   hts_htmlcheck_loop         = (t_hts_htmlcheck_loop)           htswrap_read("loop");
  148.   hts_htmlcheck_check        = (t_hts_htmlcheck_check)          htswrap_read("check-link");
  149. Log: none
  150.  
  151.   hts_htmlcheck_pause        = (t_hts_htmlcheck_pause)          htswrap_read("pause");
  152. Log: "pause: <lockfile>"
  153.  
  154.   hts_htmlcheck_filesave     = (t_hts_htmlcheck_filesave)       htswrap_read("save-file");
  155.   hts_htmlcheck_linkdetected = (t_hts_htmlcheck_linkdetected)   htswrap_read("link-detected");
  156. Log: none
  157.  
  158.   hts_htmlcheck_xfrstatus    = (t_hts_htmlcheck_xfrstatus)      htswrap_read("transfer-status");
  159. Log: 
  160.     "engine: transfer-status: link updated: <url> -> <file>"
  161.   | "engine: transfer-status: link added: <url> -> <file>"
  162.   | "engine: transfer-status: link recorded: <url> -> <file>"
  163.   | "engine: transfer-status: link link error (<errno>, '<err_msg>'): <url>"
  164.   hts_htmlcheck_savename     = (t_hts_htmlcheck_savename  )     htswrap_read("save-name");
  165. Log: 
  166.     "engine: save-name: local name: <url> -> <file>"
  167. */
  168.   
  169.   htswrap_add("init",htsshow_init);
  170.   htswrap_add("free",htsshow_uninit);
  171.   htswrap_add("start",htsshow_start);
  172.   htswrap_add("change-options",htsshow_chopt);
  173.   htswrap_add("end",htsshow_end);
  174.   htswrap_add("check-html",htsshow_checkhtml);
  175.   htswrap_add("loop",htsshow_loop);
  176.   htswrap_add("query",htsshow_query);
  177.   htswrap_add("query2",htsshow_query2);
  178.   htswrap_add("query3",htsshow_query3);
  179.   htswrap_add("check-link",htsshow_check);
  180.   htswrap_add("pause",htsshow_pause);
  181.   htswrap_add("save-file",htsshow_filesave);
  182.   htswrap_add("link-detected",htsshow_linkdetected);
  183.   htswrap_add("transfer-status",htsshow_xfrstatus);
  184.   htswrap_add("save-name",htsshow_savename);
  185.  
  186.   return hts_main(argc,argv);
  187. }
  188.  
  189.  
  190. /* CALLBACK FUNCTIONS */
  191.  
  192. /* Initialize the Winsock */
  193. void __cdecl htsshow_init(void) {
  194. #ifdef _WIN32
  195.   {
  196.     WORD   wVersionRequested;   // requested version WinSock API
  197.     WSADATA wsadata;            // Windows Sockets API data
  198.     int stat;
  199.     wVersionRequested = 0x0101;
  200.     stat = WSAStartup( wVersionRequested, &wsadata );
  201.     if (stat != 0) {
  202.       printf("Winsock not found!\n");
  203.       return;
  204.     } else if (LOBYTE(wsadata.wVersion) != 1  && HIBYTE(wsadata.wVersion) != 1) {
  205.       printf("WINSOCK.DLL does not support version 1.1\n");
  206.       WSACleanup();
  207.       return;
  208.     }
  209.   }
  210. #endif
  211.  
  212. }
  213. void __cdecl htsshow_uninit(void) {
  214. #ifdef _WIN32
  215.   WSACleanup();
  216. #endif
  217. }
  218. int __cdecl htsshow_start(httrackp* opt) {
  219.   use_show=0;
  220.   if (opt->verbosedisplay==2) {
  221.     use_show=1;
  222.     vt_clear();
  223.   }
  224.   return 1; 
  225. }
  226. int __cdecl htsshow_chopt(httrackp* opt) {
  227.   return __cdecl htsshow_start(opt);
  228. }
  229. int  __cdecl htsshow_end(void) { 
  230.   return 1; 
  231. }
  232. int __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  233.   return 1;
  234. }
  235. int __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time, hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  236.   static TStamp prev_mytime=0; /* ok */
  237.   static t_InpInfo SInfo; /* ok */
  238.   //
  239.   TStamp mytime;
  240.   long int rate=0;
  241.   char st[256];
  242.   //
  243.   int stat_written=-1;
  244.   int stat_updated=-1;
  245.   int stat_errors=-1;
  246.   int stat_warnings=-1;
  247.   int stat_infos=-1;
  248.   int nbk=-1;
  249.   LLint nb=-1;
  250.   int stat_nsocket=-1;
  251.   LLint stat_bytes=-1;
  252.   LLint stat_bytes_recv=-1;
  253.   int irate=-1;
  254.   if (stats) {
  255.     stat_written=stats->stat_files;
  256.     stat_updated=stats->stat_updated_files;
  257.     stat_errors=stats->stat_errors;
  258.     stat_warnings=stats->stat_warnings;
  259.     stat_infos=stats->stat_infos;
  260.     nbk=stats->nbk;
  261.     stat_nsocket=stats->stat_nsocket;
  262.     irate=(int)stats->rate;
  263.     nb=stats->nb;
  264.     stat_bytes=stats->nb;
  265.     stat_bytes_recv=stats->HTS_TOTAL_RECV;
  266.   }
  267.  
  268.   if (!use_show)
  269.     return 1;
  270.  
  271.   mytime=mtime_local();
  272.   if ((stat_time>0) && (stat_bytes_recv>0))
  273.     rate=(int)(stat_bytes_recv/stat_time);
  274.   else
  275.     rate=0;    // pas d'infos
  276.  
  277.   /* Infos */
  278.   if (stat_bytes>=0) SInfo.stat_bytes=stat_bytes;      // bytes
  279.   if (stat_time>=0) SInfo.stat_time=stat_time;         // time
  280.   if (lien_tot>=0) SInfo.lien_tot=lien_tot; // nb liens
  281.   if (lien_n>=0) SInfo.lien_n=lien_n;       // scanned
  282.   SInfo.stat_nsocket=stat_nsocket;          // socks
  283.   if (rate>0)  SInfo.rate=rate;                // rate
  284.   if (irate>=0) SInfo.irate=irate;             // irate
  285.   if (SInfo.irate<0) SInfo.irate=SInfo.rate;
  286.   if (SInfo.stat_back>=0) SInfo.stat_back=nbk;
  287.   if (stat_written>=0) SInfo.stat_written=stat_written;
  288.   if (stat_updated>=0) SInfo.stat_updated=stat_updated;
  289.   if (stat_errors>=0)  SInfo.stat_errors=stat_errors;
  290.   if (stat_warnings>=0)  SInfo.stat_warnings=stat_warnings;
  291.   if (stat_infos>=0)  SInfo.stat_infos=stat_infos;
  292.  
  293.  
  294.   if ( ((mytime - prev_mytime)>100) || ((mytime - prev_mytime)<0) ) {
  295.     prev_mytime=mytime;
  296.  
  297.     
  298.     st[0]='\0';
  299.     qsec2str(st,stat_time);
  300.     vt_home();
  301.     printf(
  302.     VT_GOTOXY("1","1")
  303.     VT_CLREOL
  304.                            STYLE_STATTEXT   "Bytes saved:"
  305.                            STYLE_STATVALUES " \t%s"
  306.                            "\t"
  307.     VT_CLREOL
  308.     VT_GOTOXY("40","1")
  309.                            STYLE_STATTEXT   "Links scanned:"
  310.                            STYLE_STATVALUES " \t%d/%d (+%d)"
  311.     VT_CLREOL"\n"VT_CLREOL
  312.     VT_GOTOXY("1","2")
  313.                            STYLE_STATTEXT   "Time:"
  314.                                             " \t"
  315.                            STYLE_STATVALUES "%s"
  316.                            "\t"
  317.     VT_CLREOL
  318.     VT_GOTOXY("40","2")
  319.                            STYLE_STATTEXT   "Files written:"
  320.                                             " \t"
  321.                            STYLE_STATVALUES "%d"
  322.     VT_CLREOL"\n"VT_CLREOL
  323.     VT_GOTOXY("1","3")
  324.                            STYLE_STATTEXT   "Transfer rate:"
  325.                                             " \t"
  326.                            STYLE_STATVALUES "%s (%s)"
  327.                            "\t"
  328.     VT_CLREOL
  329.     VT_GOTOXY("40","3")
  330.                            STYLE_STATTEXT   "Files updated:"
  331.                                             " \t"
  332.                            STYLE_STATVALUES "%d"
  333.     VT_CLREOL"\n"VT_CLREOL
  334.     VT_GOTOXY("1","4")
  335.                            STYLE_STATTEXT   "Active connections:"
  336.                                             " \t"
  337.                            STYLE_STATVALUES "%d"
  338.                            "\t"
  339.     VT_CLREOL
  340.     VT_GOTOXY("40","4")
  341.                            STYLE_STATTEXT   "Errors:"
  342.                            STYLE_STATVALUES " \t"
  343.                            STYLE_STATVALUES "%d"
  344.     VT_CLREOL"\n"
  345.     STYLE_STATRESET
  346.     ,
  347.       /* */
  348.       (char*)int2bytes(SInfo.stat_bytes),
  349.       (int)lien_n,(int)SInfo.lien_tot,(int)nbk,
  350.       (char*)st,
  351.       (int)SInfo.stat_written,
  352.       (char*)int2bytessec(SInfo.irate),(char*)int2bytessec(SInfo.rate),
  353.       (int)SInfo.stat_updated,
  354.       (int)SInfo.stat_nsocket,
  355.       (int)SInfo.stat_errors
  356.       /* */
  357.       );
  358.  
  359.     
  360.     // parcourir registre des liens
  361.     if (back_index>=0) {  // seulement si index passΘ
  362.       int j,k;
  363.       int index=0;
  364.       int ok=0;         // idem
  365.       int l;            // idem
  366.       //
  367.       t_StatsBuffer StatsBuffer[NStatsBuffer];
  368.       
  369.       {
  370.         int i;
  371.         for(i=0;i<NStatsBuffer;i++) {
  372.           strcpy(StatsBuffer[i].state,"");
  373.           strcpy(StatsBuffer[i].name,"");
  374.           strcpy(StatsBuffer[i].file,"");
  375.           strcpy(StatsBuffer[i].url_sav,"");
  376.           StatsBuffer[i].back=0;
  377.           StatsBuffer[i].size=0;
  378.           StatsBuffer[i].sizetot=0;
  379.         }
  380.       }
  381.       for(k=0;k<2;k++) {    // 0: lien en cours 1: autres liens
  382.         for(j=0;(j<3) && (index<NStatsBuffer);j++) {  // passe de prioritΘ
  383.           int _i;
  384.           for(_i=0+k;(_i< max(back_max*k,1) ) && (index<NStatsBuffer);_i++) {  // no lien
  385.             int i=(back_index+_i)%back_max;    // commencer par le "premier" (l'actuel)
  386.             if (back[i].status>=0) {     // signifie "lien actif"
  387.               // int ok=0;  // OPTI
  388.               ok=0;
  389.               switch(j) {
  390.               case 0:     // prioritaire
  391.                 if ((back[i].status>0) && (back[i].status<99)) {
  392.                   strcpy(StatsBuffer[index].state,"receive"); ok=1;
  393.                 }
  394.                 break;
  395.               case 1:
  396.                 if (back[i].status==99) {
  397.                   strcpy(StatsBuffer[index].state,"request"); ok=1;
  398.                 }
  399.                 else if (back[i].status==100) {
  400.                   strcpy(StatsBuffer[index].state,"connect"); ok=1;
  401.                 }
  402.                 else if (back[i].status==101) {
  403.                   strcpy(StatsBuffer[index].state,"search"); ok=1;
  404.                 }
  405.                 else if (back[i].status==1000) {    // ohh le beau ftp
  406.                   sprintf(StatsBuffer[index].state,"ftp: %s",back[i].info); ok=1;
  407.                 }
  408.                 break;
  409.               default:
  410.                 if (back[i].status==0) {  // prΩt
  411.                   if ((back[i].r.statuscode==200)) {
  412.                     strcpy(StatsBuffer[index].state,"ready"); ok=1;
  413.                   }
  414.                   else if ((back[i].r.statuscode>=100) && (back[i].r.statuscode<=599)) {
  415.                     char tempo[256]; tempo[0]='\0';
  416.                     infostatuscode(tempo,back[i].r.statuscode);
  417.                     strcpy(StatsBuffer[index].state,tempo); ok=1;
  418.                   }
  419.                   else {
  420.                     strcpy(StatsBuffer[index].state,"error"); ok=1;
  421.                   }
  422.                 }
  423.                 break;
  424.               }
  425.               
  426.               if (ok) {
  427.                 char s[HTS_URLMAXSIZE*2];
  428.                 //
  429.                 StatsBuffer[index].back=i;        // index pour + d'infos
  430.                 //
  431.                 s[0]='\0';
  432.                 strcpy(StatsBuffer[index].url_sav,back[i].url_sav);   // pour cancel
  433.                 if (strcmp(back[i].url_adr,"file://"))
  434.                   strcat(s,back[i].url_adr);
  435.                 else
  436.                   strcat(s,"localhost");
  437.                 if (back[i].url_fil[0]!='/')
  438.                   strcat(s,"/");
  439.                 strcat(s,back[i].url_fil);
  440.                 
  441.                 StatsBuffer[index].file[0]='\0';
  442.                 {
  443.                   char* a=strrchr(s,'/');
  444.                   if (a) {
  445.                     strncat(StatsBuffer[index].file,a,200);
  446.                     *a='\0';
  447.                   }
  448.                 }
  449.                 
  450.                 if ((l=strlen(s))<MAX_LEN_INPROGRESS)
  451.                   strcpy(StatsBuffer[index].name,s);
  452.                 else {
  453.                   // couper
  454.                   StatsBuffer[index].name[0]='\0';
  455.                   strncat(StatsBuffer[index].name,s,MAX_LEN_INPROGRESS/2-2);
  456.                   strcat(StatsBuffer[index].name,"...");
  457.                   strcat(StatsBuffer[index].name,s+l-MAX_LEN_INPROGRESS/2+2);
  458.                 }
  459.                                
  460.                 if (back[i].r.totalsize>0) {  // taille prΘdΘfinie
  461.                   StatsBuffer[index].sizetot=back[i].r.totalsize;
  462.                   StatsBuffer[index].size=back[i].r.size;
  463.                 } else {  // pas de taille prΘdΘfinie
  464.                   if (back[i].status==0) {  // prΩt
  465.                     StatsBuffer[index].sizetot=back[i].r.size;
  466.                     StatsBuffer[index].size=back[i].r.size;
  467.                   } else {
  468.                     StatsBuffer[index].sizetot=8192;
  469.                     StatsBuffer[index].size=(back[i].r.size % 8192);
  470.                   }
  471.                 }
  472.                 index++;
  473.               }
  474.             }
  475.           }
  476.         }
  477.       }
  478.  
  479.       /* LF */
  480.       printf("%s\n",VT_CLREOL);
  481.  
  482.       /* Display current job */
  483.       {
  484.         int parsing=0;
  485.         printf("Current job: ");
  486.         if (!(parsing=hts_is_parsing(-1)))
  487.           printf("receiving files");
  488.         else {
  489.           switch(hts_is_testing()) {
  490.           case 0:
  491.             printf("parsing HTML file (%d%%)",parsing);
  492.             break;
  493.           case 1:
  494.             printf("parsing HTML file: testing links (%d%%)",parsing);
  495.             break;
  496.           case 2:
  497.             printf("purging files");
  498.             break;
  499.           }
  500.         }
  501.         printf("%s\n",VT_CLREOL);
  502.       }
  503.       
  504.       /* Display background jobs */
  505.       {
  506.         int i;
  507.         for(i=0;i<NStatsBuffer;i++) {
  508.           if (strnotempty(StatsBuffer[i].state)) {
  509.             printf(VT_CLREOL" %s - \t%s%s \t%s / \t%s",
  510.               StatsBuffer[i].state,
  511.               StatsBuffer[i].name,
  512.               StatsBuffer[i].file,
  513.               int2bytes(StatsBuffer[i].size),
  514.               int2bytes(StatsBuffer[i].sizetot)
  515.               );
  516.           }
  517.           printf("%s\n",VT_CLREOL);
  518.         }
  519.       }
  520.  
  521.  
  522.     }
  523.  
  524.   }
  525.  
  526.  
  527.  
  528.   return 1;
  529. }
  530. char* __cdecl htsshow_query(char* question) {
  531.   static char s[12]=""; /* ok */
  532.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  533.   io_flush; linput(stdin,s,4);
  534.   return s;
  535. }
  536. char* __cdecl htsshow_query2(char* question) {
  537.   static char s[12]=""; /* ok */
  538.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  539.   io_flush; linput(stdin,s,4);
  540.   return s;
  541. }
  542. char* __cdecl htsshow_query3(char* question) {
  543.   static char line[256]; /* ok */
  544.   do {
  545.     io_flush; linput(stdin,line,206);
  546.   } while(!strnotempty(line));
  547.   printf("ok..\n");
  548.   return line;
  549. }
  550. int __cdecl htsshow_check(char* adr,char* fil,int status) {
  551.   return -1;
  552. }
  553. void __cdecl htsshow_pause(char* lockfile) {
  554.   while (fexist(lockfile)) {
  555.     Sleep(1000);
  556.   }
  557. }
  558. void __cdecl htsshow_filesave(char* file) {
  559. }
  560. int __cdecl htsshow_linkdetected(char* link) {
  561.   return 1;
  562. }
  563. int __cdecl htsshow_xfrstatus(lien_back* back) {
  564.   return 1;
  565. }
  566. int __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  567.   return 1;
  568. }
  569.  
  570.  
  571. #endif
  572.